We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65c93b0 commit 4b2a810Copy full SHA for 4b2a810
1 file changed
packages/core/bundleprompts.js
@@ -32,12 +32,13 @@ async function main() {
32
)
33
const logCategories = uniq([
34
"script",
35
+ "agent",
36
...Array.from(
37
execSync(
38
`grep -r 'debug("genaiscript:.*")' --include \*.ts --exclude-dir='.genaiscript' .`
39
40
.toString("utf8")
- .matchAll(/debug\("genaiscript:(?<category>[^"]+)"\)/g)
41
+ .matchAll(/debug\("(?<category>genaiscript:[^"]+)"\)/g)
42
43
.sort()
44
.map((m) => m.groups.category),
0 commit comments