Skip to content

Commit

Permalink
chore: removed uneccessary log
Browse files Browse the repository at this point in the history
  • Loading branch information
sghsri committed Mar 22, 2024
1 parent 115d468 commit 7da1090
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chrome-extension-toolkit",
"version": "0.0.59",
"version": "0.0.60",
"description": "A template for creating npm packages using TypeScript and VSCode",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
1 change: 0 additions & 1 deletion src/messaging/MessageListener.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ export class MessageListener<M> implements IMessageListener<M> {
const handler = this.handlers[messageName];
if (!handler) {
// this message is for my current context, but I don't have a handler for it, so ignore it
console.error(`No handler for message ${messageName}`, message, sender);
return true;
}
try {
Expand Down

1 comment on commit 7da1090

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lines Statements Branches Functions
Coverage: 9%
9.21% (27/293) 14.86% (11/74) 9.72% (7/72)

Please sign in to comment.