a3c39cde4b
This PR replaces our `console.log` with `nicelog` so that I can more easily grep for errant console.logs. ### Change Type - [x] `internal` — Any other changes that don't affect the published package (will not publish a new version)
4 lines
106 B
TypeScript
4 lines
106 B
TypeScript
export function nicelog(...args: any[]) {
|
|
// eslint-disable-next-line no-console
|
|
console.log(...args)
|
|
}
|