🗃️ TypeScript Logging Library developed by BlazingWorks
npm install @blazingworks/logger
yarn add @blazingworks/logger
import { Logger } from "@blazingworks/logger";
import { ConsoleTransport } from "@blazingworks/logger/transports";
const logger = new Logger({
transports: [{ module: new ConsoleTransport() }],
});
logger.info("Hello World");
const { Logger } = require("@blazingworks/logger");
const { ConsoleTransport } = require("@blazingworks/logger/transports");
const logger = new Logger({
transports: [{ module: new ConsoleTransport() }],
});
logger.info("Hello World");
The logger comes with various kinds of transports. You can find more about them here.
- For general issues/questions, open an issue
- For security issues, please email [email protected]
- For important questions, please email [email protected]
As this is an open-source project, support is limited. Please use GitHub Issues for community support or contact [email protected] for very important matters.
ℹ️ All code in this repository is licensed under the MIT License.