Files
klz-cables.com/.pnpm-store/v10/files/9e/9232a0665114ff0adfeb0fcdcc9e16cc1eedc92f7f8481b3cb6661322f6d7d7c0c4c0fb7a3b1997e5967e0b2b7a23c9d3b39cb9eef9c89c950ab18b8f08dc1
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

10 lines
221 B
Plaintext

'use strict'
const { join } = require('node:path')
const pino = require('../..')
const transport = pino.transport({
target: join(__dirname, 'transport-worker.js')
})
const logger = pino(transport)
logger.info('Hello')