Files
cli/assistant/src/module/local-apps/demos/root/test-log/main.ts
2025-12-05 01:12:24 +08:00

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