UNPKG

st-bundle

Version:

CLI for watching and bundling SpringType projects.

11 lines (8 loc) 244 B
import { END_LINE } from './interfaces'; import { Logger } from './logger'; const enable = false; export function debugPrint(text: string) { if (enable) { Logger.info(`Typechecker debugPrint:`, text + END_LINE); } }