9 lines
412 B
TypeScript
9 lines
412 B
TypeScript
import { Logger } from '@kevisual/logger';
|
|
|
|
const logger = new Logger();
|
|
|
|
logger.info('This is a test log message from the main.ts file of the test app.');
|
|
logger.warn('This is a test warning message from the main.ts file of the test app.');
|
|
logger.error('This is a test error message from the main.ts file of the test app.');
|
|
logger.debug('This is a test debug message from the main.ts file of the test app.');
|