forwards-long-jump / discotron

Modular Discord bot supporting plugins hosted on git repositories
MIT License
3 stars 5 forks source link

Scoped logger #152

Open RedMser opened 4 years ago

RedMser commented 4 years ago

WebAPI has a lot of loggers that start with [WebAPI]. Proposed API to avoid repition:

const logger = Logger.scope("WebAPI");
logger.warn("Test");

// same as logger.warn("[WebAPI] Test");