Files
pnpm/packages/logger/src/writeToConsole.ts
Khải 5bf6aaa407 refactor: move @pnpm/logger to the monorepo (#8385)
* chore: create @pnpm/logger

* fix: workaround typescript error

* chore: update manifests

* chore(deps): link @pnpm/logger from workspace
2024-08-07 18:02:08 +02:00

10 lines
149 B
TypeScript

import bole from 'bole'
export function writeToConsole (): void {
bole.output([
{
level: 'debug', stream: process.stdout,
},
])
}