feat!: API options object support to control sentry handling; removal of logger.sentry.
ci/woodpecker/push/ci Pipeline failed
ci/woodpecker/push/publish unknown status

This commit is contained in:
2026-08-07 12:07:29 -03:00
parent 9f18e0855e
commit 6bee3a801d
11 changed files with 1170 additions and 161 deletions
+16 -2
View File
@@ -1,2 +1,16 @@
export * from "./logger.js";
export * from "./types.js";
/**
* @mifi/logger — intentional, namespaced logging for browser and Node.js.
*
* @packageDocumentation
*
* @example
* ```ts
* import { createLogger } from "@mifi/logger";
*
* const logger = createLogger({ environment: "development", namespace: "APP" });
* logger.info("started");
* ```
*/
export * from "./logger";
export * from "./sinks/console";
export * from "./types";