UNPKG

@adminjs/express

Version:

This is an official AdminJS plugin which integrates it with Express.js framework

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