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.');