Skip to content

Commit

Permalink
Log error instead of info
Browse files Browse the repository at this point in the history
Signed-off-by: Seb Julliand <[email protected]>
  • Loading branch information
sebjulliand committed Jul 23, 2024
1 parent 268f18b commit 464e41a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/Instance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export default class Instance {
console.timeEnd(identity);
}
catch (error) {
console.log(`${event} event function ${identity} failed`, error);
console.error(`${event} event function ${identity} failed`, error);
}
finally {
if (callable.transient) {
Expand Down

0 comments on commit 464e41a

Please sign in to comment.