dbeug updates

This commit is contained in:
Ben Allfree
2022-11-15 04:10:29 +00:00
parent 9e210af97b
commit db948a561f

View File

@@ -1,7 +1,7 @@
import { DEVELOPMENT } from '../constants'
import { DEBUG } from '../constants'
export const dbg = (...args: any[]) => {
if (!DEVELOPMENT) return
if (!DEBUG) return
console.log(...args)
}