import { FireflyRuntime, ConsoleLogger, type LogLevel } from "@squide/firefly";
const logger = new ConsoleLogger(new FireflyRuntime());
logger.debug("Debug log", { foo: "bar" });
logger.information("Info log");
logger.warning("Warning log");
logger.error("Error log");
logger.critical("Critical log");