UNPKG

@admin-bro/express

Version:

This is an official AdminBro plugin which integrates it to expressjs framework

11 lines (10 loc) 249 B
export const log = { /** * Logs the debug message to console if `process.env.ADMIN_BRO_EXPRESS_DEBUG` is set */ debug: (message: string): void => { if (process.env.ADMIN_BRO_EXPRESS_DEBUG) { console.debug(message); } }, };