[PR #4426] [MERGED] Refactor Class Name Logging #4616

Closed
opened 2026-02-22 18:36:11 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/4426
Author: @angelplusultra
Created: 9/22/2025
Status: Merged
Merged: 9/25/2025
Merged by: @timothycarambat

Base: masterHead: 4413-update-class-name-logging


📝 Commits (2)

  • a888027 Add className property to various LLM and embedder classes to fix logging bug after minification
  • af018ca Fix bug with this.log method by applying the missing private field symbol

📊 Changes

30 files changed (+60 additions, -30 deletions)

View changed files

📝 server/utils/AiProviders/anthropic/index.js (+2 -1)
📝 server/utils/AiProviders/apipie/index.js (+2 -1)
📝 server/utils/AiProviders/cometapi/index.js (+2 -1)
📝 server/utils/AiProviders/deepseek/index.js (+2 -1)
📝 server/utils/AiProviders/dellProAiStudio/index.js (+2 -1)
📝 server/utils/AiProviders/gemini/index.js (+2 -1)
📝 server/utils/AiProviders/genericOpenAi/index.js (+2 -1)
📝 server/utils/AiProviders/koboldCPP/index.js (+2 -1)
📝 server/utils/AiProviders/liteLLM/index.js (+2 -1)
📝 server/utils/AiProviders/mistral/index.js (+2 -1)
📝 server/utils/AiProviders/moonshotAi/index.js (+2 -1)
📝 server/utils/AiProviders/novita/index.js (+2 -1)
📝 server/utils/AiProviders/nvidiaNim/index.js (+2 -1)
📝 server/utils/AiProviders/openAi/index.js (+2 -1)
📝 server/utils/AiProviders/openRouter/index.js (+2 -1)
📝 server/utils/AiProviders/ppio/index.js (+2 -1)
📝 server/utils/AiProviders/textGenWebUI/index.js (+2 -1)
📝 server/utils/AiProviders/xai/index.js (+2 -1)
📝 server/utils/EmbeddingEngines/azureOpenAi/index.js (+2 -1)
📝 server/utils/EmbeddingEngines/gemini/index.js (+2 -1)

...and 10 more files

📄 Description

Pull Request Type

  • feat
  • 🐛 fix
  • ♻️ refactor
  • 💄 style
  • 🔨 chore
  • 📝 docs

Relevant Issues

resolves #4413

What is in this change?

This PR introduces a change to every LLM and Embedder class in /server where this.constructor.name was being used for debug logging purposes. Over 30 classes now contain a className property with the name of the class statically assigned as a string inside the constructor, and then used in the private log function of each class.

Additional Information

Developer Validations

  • I ran yarn lint from the root of the repo & committed changes
  • Relevant documentation has been updated
  • I have tested my code functionality
  • Docker build succeeds locally

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Mintplex-Labs/anything-llm/pull/4426 **Author:** [@angelplusultra](https://github.com/angelplusultra) **Created:** 9/22/2025 **Status:** ✅ Merged **Merged:** 9/25/2025 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `4413-update-class-name-logging` --- ### 📝 Commits (2) - [`a888027`](https://github.com/Mintplex-Labs/anything-llm/commit/a8880273c554feefbf718067b49e658345a78eca) Add className property to various LLM and embedder classes to fix logging bug after minification - [`af018ca`](https://github.com/Mintplex-Labs/anything-llm/commit/af018cac881f1278eee738f054df30df65c909d3) Fix bug with this.log method by applying the missing private field symbol ### 📊 Changes **30 files changed** (+60 additions, -30 deletions) <details> <summary>View changed files</summary> 📝 `server/utils/AiProviders/anthropic/index.js` (+2 -1) 📝 `server/utils/AiProviders/apipie/index.js` (+2 -1) 📝 `server/utils/AiProviders/cometapi/index.js` (+2 -1) 📝 `server/utils/AiProviders/deepseek/index.js` (+2 -1) 📝 `server/utils/AiProviders/dellProAiStudio/index.js` (+2 -1) 📝 `server/utils/AiProviders/gemini/index.js` (+2 -1) 📝 `server/utils/AiProviders/genericOpenAi/index.js` (+2 -1) 📝 `server/utils/AiProviders/koboldCPP/index.js` (+2 -1) 📝 `server/utils/AiProviders/liteLLM/index.js` (+2 -1) 📝 `server/utils/AiProviders/mistral/index.js` (+2 -1) 📝 `server/utils/AiProviders/moonshotAi/index.js` (+2 -1) 📝 `server/utils/AiProviders/novita/index.js` (+2 -1) 📝 `server/utils/AiProviders/nvidiaNim/index.js` (+2 -1) 📝 `server/utils/AiProviders/openAi/index.js` (+2 -1) 📝 `server/utils/AiProviders/openRouter/index.js` (+2 -1) 📝 `server/utils/AiProviders/ppio/index.js` (+2 -1) 📝 `server/utils/AiProviders/textGenWebUI/index.js` (+2 -1) 📝 `server/utils/AiProviders/xai/index.js` (+2 -1) 📝 `server/utils/EmbeddingEngines/azureOpenAi/index.js` (+2 -1) 📝 `server/utils/EmbeddingEngines/gemini/index.js` (+2 -1) _...and 10 more files_ </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [ ] ✨ feat - [x] 🐛 fix - [x] ♻️ refactor - [ ] 💄 style - [ ] 🔨 chore - [ ] 📝 docs ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves #4413 ### What is in this change? <!-- Describe the changes in this PR that are impactful to the repo. --> This PR introduces a change to every LLM and Embedder class in `/server` where `this.constructor.name` was being used for debug logging purposes. Over 30 classes now contain a `className` property with the name of the class statically assigned as a string inside the constructor, and then used in the private `log` function of each class. ### Additional Information <!-- Add any other context about the Pull Request here that was not captured above. --> ### Developer Validations <!-- All of the applicable items should be checked. --> - [x] I ran `yarn lint` from the root of the repo & committed changes - [x] Relevant documentation has been updated - [x] I have tested my code functionality - [ ] Docker build succeeds locally --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-22 18:36:11 -05:00
yindo closed this issue 2026-02-22 18:36:11 -05:00
yindo changed title from [PR #4426] Refactor Class Name Logging to [PR #4426] [MERGED] Refactor Class Name Logging 2026-06-05 15:19:28 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#4616