Skip to content
Snippets Groups Projects
Commit 0856f4cd authored by syuilo's avatar syuilo
Browse files

Use error instaed of warn

parent 862463a1
No related branches found
No related tags found
No related merge requests found
......@@ -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();
}
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment