Skip to content

Commit

Permalink
fix: remove deprecated debuglog
Browse files Browse the repository at this point in the history
  • Loading branch information
kikar authored and manast committed Jul 12, 2023
1 parent 532b1a7 commit 4ce36fe
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/job.js
Expand Up @@ -3,7 +3,7 @@
const _ = require('lodash');
const utils = require('./utils');
const scripts = require('./scripts');
const debuglog = require('debuglog')('bull');
const debuglog = require('util').debuglog('bull');
const errors = require('./errors');
const backoffs = require('./backoffs');

Expand Down
2 changes: 1 addition & 1 deletion lib/queue.js
Expand Up @@ -18,7 +18,7 @@ const TimerManager = require('./timer-manager');
const { promisify } = require('util');
const { pTimeout } = require('./p-timeout');
const semver = require('semver');
const debuglog = require('debuglog')('bull');
const debuglog = require('util').debuglog('bull');
const uuid = require('uuid');

const commands = require('./commands/');
Expand Down
1 change: 0 additions & 1 deletion package.json
Expand Up @@ -22,7 +22,6 @@
"readmeFilename": "README.md",
"dependencies": {
"cron-parser": "^4.2.1",
"debuglog": "^1.0.0",
"get-port": "^5.1.1",
"ioredis": "^5.3.2",
"lodash": "^4.17.21",
Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Expand Up @@ -1891,7 +1891,7 @@ debug@^4.3.4:
dependencies:
ms "2.1.2"

debuglog@^1.0.0, debuglog@^1.0.1:
debuglog@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/debuglog/-/debuglog-1.0.1.tgz#aa24ffb9ac3df9a2351837cfb2d279360cd78492"
integrity sha1-qiT/uaw9+aI1GDfPstJ5NgzXhJI=
Expand Down

0 comments on commit 4ce36fe

Please sign in to comment.