Skip to content

Commit

Permalink
debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
rustyjux committed Oct 15, 2024
1 parent 5071faa commit 8b8bfa5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions microservices/kubeApi/routers/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,10 @@ async def verify_and_create_routes(namespace: str, request: Request):
insert_batch = [x for x in source_routes if not in_list(x, existing_routes)]
delete_batch = [y for y in existing_routes if not in_list(y, source_routes)]

if namespace == "gw-41c0c":
logger.debug("source routes: " + str(source_routes))
logger.debug("existing routes: " + str(existing_routes))

logger.debug("insert batch: " + str(insert_batch))

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

0 comments on commit 8b8bfa5

Please sign in to comment.