Variable loggerConst

logger: Logger = ...

Description

this is a logger module, which is used to log error in the file and console

Example

import { logger } from '@mdazad/common-utils';

logger.info("this is an info");
logger.warn("this is a warning");
logger.debug("this is a debug");
logger.success("this is a success");
logger.error("this is an error");

Generated using TypeDoc