Introduction
The Logger was developed with the aim of providing a logging solution that is easy to use and configure. It is highly adaptable to the specific needs of your project, allowing you to customize the log format, log levels, and storage destinations.
Quick Start
Below is a quick example of how to use the Logger in your project.
import v from "vkrun"
const logger = v.Logger({ level: "error" })
logger.error("An unexpected error has occurred.")