Skip to content

Commit 8b8bfa5

Browse files
committed
debug logging
1 parent 5071faa commit 8b8bfa5

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

microservices/kubeApi/routers/routes.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,10 @@ async def verify_and_create_routes(namespace: str, request: Request):
176176
insert_batch = [x for x in source_routes if not in_list(x, existing_routes)]
177177
delete_batch = [y for y in existing_routes if not in_list(y, source_routes)]
178178

179+
if namespace == "gw-41c0c":
180+
logger.debug("source routes: " + str(source_routes))
181+
logger.debug("existing routes: " + str(existing_routes))
182+
179183
logger.debug("insert batch: " + str(insert_batch))
180184

181185
logger.debug("delete batch: " + str(delete_batch))

0 commit comments

Comments
 (0)