@jcbuisson/express-x 1.5.35 → 1.5.36

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/server.mjs +0 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jcbuisson/express-x",
3
- "version": "1.5.35",
3
+ "version": "1.5.36",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "src/index.mjs",
package/src/server.mjs CHANGED
@@ -114,7 +114,6 @@ export function expressX(prisma, options = {}) {
114
114
  const channelNames = await publishFunc(result, app)
115
115
  app.log('verbose', `publish channels ${service.name} ${methodName} ${channelNames}`)
116
116
  const connections = await app.prisma.Connection.findMany({})
117
- console.log('connections', connections)
118
117
  for (const channelName of channelNames) {
119
118
  app.log('verbose', `service-event ${service.name} ${methodName} ${channelName}`)
120
119
  const connectionList = connections.filter(connection => {