Skip to main content
Dpm Logo

Dpm - Dlog :sauropod:

Discord Twitter GitHub license Github Workflow

This is a simple logger based on glogger repository and improve some features

Usage :computer:

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 :heart: in :earth_americas: