@jcbuisson/express-x 1.0.9 → 1.0.10
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/package.json +1 -1
- package/src/index.mjs +1 -1
package/package.json
CHANGED
package/src/index.mjs
CHANGED
|
@@ -169,7 +169,7 @@ function expressX(app) {
|
|
|
169
169
|
}
|
|
170
170
|
// store connection in cache
|
|
171
171
|
connections[connection.id] = connection
|
|
172
|
-
if (isDebug) console.log('active connections',
|
|
172
|
+
if (isDebug) console.log('active connections', Object.keys(connections))
|
|
173
173
|
|
|
174
174
|
// emit 'connection' event for app (expressjs extends EventEmitter)
|
|
175
175
|
app.emit('connection', connection)
|