Skip to content

Commit 1ef1eb9

Browse files
committed
chore: ??
1 parent deada00 commit 1ef1eb9

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/main.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ async function commentRuleAnalyze(
252252
const addItemNames: Set<string> = new Set()
253253
const updateItems: string[] = []
254254

255-
core.info("itemMap: " + JSON.stringify(itemMap)) // DEBUG
255+
core.debug("itemMap: " + JSON.stringify(itemMap)) // DEBUG
256256
for (const itemParams of itemMap) {
257257
const item = itemParams.content ?? ''
258258
const itemName = itemParams.name
@@ -795,7 +795,6 @@ function parseRule(
795795
if (core.isDebug()) {
796796
core.debug(`Parsed rule: ${JSON.stringify(itemParams)}`)
797797
}
798-
core.info("Parsed rule: " + JSON.stringify(itemParams)) // DEBUG
799798
return itemParams
800799
}
801800

@@ -854,7 +853,7 @@ function parseAllRules(
854853
throw Error(`parseAllRules found unexpected field \`${key}\``)
855854
}
856855
}
857-
core.info("configObject: " + JSON.stringify(configObject)) // DEBUG
856+
core.debug("configObject: " + JSON.stringify(configObject)) // DEBUG
858857

859858
const labelParamsObject = 'labels' in configObject ? configObject.labels : []
860859
const commentParamsObject =

0 commit comments

Comments
 (0)