This is a simple logger based on glogger repository and improve some features
Basic logging out:
import { Dlog } from 'https://deno.land/x/dlog2@2.0/classic.ts'; // Classic version with the classic out!
import { Dlog } from 'https://deno.land/x/dlog2@2.0/mini.ts'; // Mini version the same features of classic but with a minimalist out!
const logger = new Dlog('Test Dlog');
logger.info('helloooo from info');
logger.warn('helloooo from warn');
logger.error('helloooo from error');
logger.debug('helloooo from debug');
File log support
import { Dlog } from 'https://deno.land/x/dlog2@2.0/classic.ts'; // Classic version with the classic out!
import { Dlog } from 'https://deno.land/x/dlog2@2.0/mini.ts'; // Mini version the same features of classic but with a minimalist out!
const logger = new Dlog('Test Dlog', true, './test');
logger.info('helloooooo');
Made with ❤️ in 🌎