diff options
| author | こぴなたみぽ <syuilotan@yahoo.co.jp> | 2018-04-06 14:57:01 +0900 |
|---|---|---|
| committer | こぴなたみぽ <syuilotan@yahoo.co.jp> | 2018-04-06 14:57:01 +0900 |
| commit | eb0809ebb422849e2e362d64ee0efb7cb75dc3f7 (patch) | |
| tree | 5183c3e7e02fbd25f70249ed803a103f743e6734 /src/queue | |
| parent | Better English (diff) | |
| download | sharkey-eb0809ebb422849e2e362d64ee0efb7cb75dc3f7.tar.gz sharkey-eb0809ebb422849e2e362d64ee0efb7cb75dc3f7.tar.bz2 sharkey-eb0809ebb422849e2e362d64ee0efb7cb75dc3f7.zip | |
Remove needless log
Diffstat (limited to 'src/queue')
| -rw-r--r-- | src/queue/index.ts | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/queue/index.ts b/src/queue/index.ts index 689985e0ed..691223de2d 100644 --- a/src/queue/index.ts +++ b/src/queue/index.ts @@ -1,12 +1,9 @@ import { createQueue } from 'kue'; -import * as debug from 'debug'; import config from '../config'; import db from './processors/db'; import http from './processors/http'; -const log = debug('misskey:queue'); - const queue = createQueue({ redis: { port: config.redis.port, @@ -16,8 +13,6 @@ const queue = createQueue({ }); export function createHttp(data) { - log(`HTTP job created: ${JSON.stringify(data)}`); - return queue .create('http', data) .attempts(16) |