aboutsummaryrefslogtreecommitdiffstats
path: root/apps/workers
diff options
context:
space:
mode:
authorMohamed Bassem <me@mbassem.com>2025-09-06 06:29:03 +0000
committerMohamed Bassem <me@mbassem.com>2025-09-06 06:29:03 +0000
commit767c083c23785d59852ad3f7018c0563fbaa6754 (patch)
tree6976dcb3815d47a345b18014446f973c18417216 /apps/workers
parenta0dd73f5aaba3a9048f937a077357f5a75168ed0 (diff)
downloadkarakeep-767c083c23785d59852ad3f7018c0563fbaa6754.tar.zst
fix: Change the inferance working logging when disabled to be a debug log level
Diffstat (limited to 'apps/workers')
-rw-r--r--apps/workers/workers/inference/summarize.ts2
-rw-r--r--apps/workers/workers/inference/tagging.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/workers/workers/inference/summarize.ts b/apps/workers/workers/inference/summarize.ts
index c7b68faf..8564ef15 100644
--- a/apps/workers/workers/inference/summarize.ts
+++ b/apps/workers/workers/inference/summarize.ts
@@ -43,7 +43,7 @@ export async function runSummarization(
inferenceClient: InferenceClient,
) {
if (!serverConfig.inference.enableAutoSummarization) {
- logger.info(
+ logger.debug(
`[inference][${job.id}] Skipping summarization job for bookmark with id "${bookmarkId}" because it's disabled in the config.`,
);
return;
diff --git a/apps/workers/workers/inference/tagging.ts b/apps/workers/workers/inference/tagging.ts
index 3c7b5adb..6c862f76 100644
--- a/apps/workers/workers/inference/tagging.ts
+++ b/apps/workers/workers/inference/tagging.ts
@@ -408,7 +408,7 @@ export async function runTagging(
inferenceClient: InferenceClient,
) {
if (!serverConfig.inference.enableAutoTagging) {
- logger.info(
+ logger.debug(
`[inference][${job.id}] Skipping tagging job for bookmark with id "${bookmarkId}" because it's disabled in the config.`,
);
return;