Skip to content

Commit

Permalink
fix(cds-plugin-ui5): package name in logs (#918)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoschoenteich authored Nov 21, 2023
1 parent 26a86f6 commit cc9a8e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cds-plugin-ui5/lib/log.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function log(type, ...message) {
if (!console[type]) {
type = "log";
}
const args = [`\x1b[36m[cds-ui5-plugin]\x1b[0m %s[%s]\x1b[0m %s`, colors[type], type];
const args = [`\x1b[36m[cds-plugin-ui5]\x1b[0m %s[%s]\x1b[0m %s`, colors[type], type];
message && args.push(...message);
console[type].apply(console[type], args);
}
Expand Down

0 comments on commit cc9a8e2

Please sign in to comment.