From 8870c10f0089b2e6f09bb192a2b8075ee00662d9 Mon Sep 17 00:00:00 2001 From: Bryan Cross Date: Sun, 8 Oct 2023 22:00:41 -0500 Subject: [PATCH] Cleaing up output --- postman/ConvertOAS.postman_collection.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/postman/ConvertOAS.postman_collection.json b/postman/ConvertOAS.postman_collection.json index 5e055e7..c9c9860 100644 --- a/postman/ConvertOAS.postman_collection.json +++ b/postman/ConvertOAS.postman_collection.json @@ -409,6 +409,7 @@ "try {", "var apiIds = JSON.parse(pm.environment.get('rt_APIIDs'));", "if(apiIds.length == 0) {", + " console.log(\"No APIs found\");", " postman.setNextRequest(null);", "}", "", @@ -425,9 +426,8 @@ "", "if(typeof apiIds !== 'undefined' && apiIds.length > 0) {", " var apiId = apiIds.pop();", - " console.log('here ', apiId);", + " ", " pm.environment.set('sourceAPIID',apiId);", - " console.log('here ', apiIds);", " pm.environment.set('rt_APIIDs',JSON.stringify(apiIds));", "}", "",