aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;