whistle.pastekitlab 1.4.3 → 1.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +2 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -141,8 +141,9 @@ module.exports = (server, options) => {
|
|
|
141
141
|
// ==================== 请求监听 ====================
|
|
142
142
|
server.on('request', (req, res) => {
|
|
143
143
|
try {
|
|
144
|
+
console.info("request:"+JSON.stringify(req))
|
|
144
145
|
const url = req.fullUrl || req.url;
|
|
145
|
-
if (!shouldIntercept(url)) return;
|
|
146
|
+
// if (!shouldIntercept(url)) return;
|
|
146
147
|
|
|
147
148
|
const data = {
|
|
148
149
|
eventId: generateId(),
|
package/package.json
CHANGED