UNPKG

@solidso/inspection

Version:

Dev mode, frontend logging library for solid.js

10 lines (7 loc) 299 B
import { type SolidInspectionInput } from '../base' import { transporter } from '../transporting/transporter' import { tconsole } from '../transporting/transports/console' transporter.add(tconsole) export default function debug (msg: SolidInspectionInput) { transporter.handle(msg, 'debug') }