mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
Use error instaed of warn
This commit is contained in:
parent
a0ea46a1ae
commit
d9ccb0c668
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ export default (job, done) => {
|
|||
if (handler) {
|
||||
handler(job, done);
|
||||
} else {
|
||||
console.warn(`Unknown job: ${job.data.type}`);
|
||||
console.error(`Unknown job: ${job.data.type}`);
|
||||
done();
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue