8 lines
211 B
TypeScript
8 lines
211 B
TypeScript
import { CardWideConfig } from '../config/types';
|
|
|
|
export const log = (cardWideConfig?: CardWideConfig | null, ...args: unknown[]) => {
|
|
if (cardWideConfig?.debug?.logging) {
|
|
console.debug(...args);
|
|
}
|
|
};
|