Skip to content

Commit 04884de

Browse files
authoredOct 12, 2023
revert conversion of 'debug' package for 'node:util::debuglog' (#173)
1 parent 8d390a9 commit 04884de

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed
 

‎lib/router.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,12 @@
55
* @link https://github.com/alexmingoia/koa-router
66
*/
77

8-
const { debuglog } = require('util');
9-
108
const compose = require('koa-compose');
119
const HttpError = require('http-errors');
1210
const methods = require('methods');
1311
const { pathToRegexp } = require('path-to-regexp');
1412
const Layer = require('./layer');
15-
16-
const debug = debuglog('koa-router');
13+
const debug = require('debug')('koa-router');
1714

1815
/**
1916
* @module koa-router

‎package.json

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"@koajs"
1313
],
1414
"dependencies": {
15+
"debug": "^4.3.4",
1516
"http-errors": "^2.0.0",
1617
"koa-compose": "^4.1.0",
1718
"methods": "^1.1.2",

0 commit comments

Comments
 (0)
Please sign in to comment.