Removing factory functions
This release gets rid of the factory functions to create the logger and instead you can instantiate the class directly.
Earlier
import { getLogger } from '@poppinss/logger'
const logger = getLogger()Now
import { Logger } from '@poppinss/logger'
const logger = new Logger()The newer approach is in sync the other repos, where we also export classes directly