mirror of
https://github.com/Wan-Video/Wan2.1.git
synced 2025-06-08 08:14:57 +00:00
8 lines
185 B
JavaScript
8 lines
185 B
JavaScript
var util = require('util')
|
|
|
|
module.exports =
|
|
function debug () {
|
|
if (/\brequest\b/.test(process.env.NODE_DEBUG))
|
|
console.error('REQUEST %s', util.format.apply(util, arguments))
|
|
}
|