diff options
| author | Mohamed Bassem <me@mbassem.com> | 2025-09-06 06:29:03 +0000 |
|---|---|---|
| committer | Mohamed Bassem <me@mbassem.com> | 2025-09-06 06:29:03 +0000 |
| commit | 767c083c23785d59852ad3f7018c0563fbaa6754 (patch) | |
| tree | 6976dcb3815d47a345b18014446f973c18417216 | |
| parent | a0dd73f5aaba3a9048f937a077357f5a75168ed0 (diff) | |
| download | karakeep-767c083c23785d59852ad3f7018c0563fbaa6754.tar.zst | |
fix: Change the inferance working logging when disabled to be a debug log level
| -rw-r--r-- | apps/workers/workers/inference/summarize.ts | 2 | ||||
| -rw-r--r-- | apps/workers/workers/inference/tagging.ts | 2 |
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; |
