summaryrefslogtreecommitdiff
path: root/fedishoop/logging.ts
diff options
context:
space:
mode:
Diffstat (limited to 'fedishoop/logging.ts')
-rw-r--r--fedishoop/logging.ts13
1 files changed, 13 insertions, 0 deletions
diff --git a/fedishoop/logging.ts b/fedishoop/logging.ts
new file mode 100644
index 0000000..547e3ff
--- /dev/null
+++ b/fedishoop/logging.ts
@@ -0,0 +1,13 @@
+import { configure, getConsoleSink } from "@logtape/logtape";
+
+await configure({
+ sinks: {
+ console: getConsoleSink(),
+ },
+ filters: {},
+ loggers: [
+ { category: "fedishoop", level: "debug", sinks: ["console"] },
+ { category: "fedify", level: "info", sinks: ["console"] },
+ { category: "logtape", level: "warning", sinks: ["console"] },
+ ],
+});