Remove warning log for unregister

This commit is contained in:
Cohee 2024-10-04 13:05:03 +00:00
parent c853547b11
commit d5d8d6c876

View File

@ -171,7 +171,6 @@ export class ToolManager {
*/ */
static unregisterFunctionTool(name) { static unregisterFunctionTool(name) {
if (!this.#tools.has(name)) { if (!this.#tools.has(name)) {
console.warn(`No tool with the name "${name}" has been registered.`);
return; return;
} }