Skip to content

Commit 72b5b5b

Browse files
authored
fix: don't log message when creating uuid.json (#19)
1 parent 9a05326 commit 72b5b5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export const pluginDevtoolsJson = (
5252

5353
const uuid = v4();
5454
fs.writeFileSync(uuidPath, uuid, { encoding: 'utf-8' });
55-
logger.info(
55+
logger.debug(
5656
`[rsbuild-plugin-devtools-json] Generated UUID '${uuid}' for DevTools project settings.`,
5757
);
5858
return uuid;

0 commit comments

Comments
 (0)