We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11eed01 commit f0fd4ceCopy full SHA for f0fd4ce
.changeset/khaki-lions-glow.md
@@ -0,0 +1,8 @@
1
+---
2
+"@codecov/bundler-plugin-core": patch
3
+"@codecov/rollup-plugin": patch
4
+"@codecov/vite-plugin": patch
5
+"@codecov/webpack-plugin": patch
6
7
+
8
+Add codecov prefix to log messages
packages/bundler-plugin-core/src/utils/logging.ts
@@ -13,7 +13,7 @@ export function prepareMessage(msg: unknown): string {
13
export function l(msg: string): void {
14
// Required to properly log to the console
15
// eslint-disable-next-line no-console
16
- console.log(msg);
+ console.log(`[codecov] ${msg}`);
17
}
18
19
export function nl(): void {
0 commit comments