diff --git a/Html/apps/extension_ase/ase_client/manager.py b/Html/apps/extension_ase/ase_client/manager.py
index 466bfd6..0a0bf9f 100644
--- a/Html/apps/extension_ase/ase_client/manager.py
+++ b/Html/apps/extension_ase/ase_client/manager.py
@@ -91,6 +91,7 @@ class ChatManager:
def function_call(self, function_name, arg_function):
+ print("function_call", function_name, arg_function)
return self.function_manager.call_function(function_name, arg_function)
def change_language(self, id, language):
diff --git a/Html/apps/function_tools/function_manager.py b/Html/apps/function_tools/function_manager.py
index 0ad90cf..f0c6743 100644
--- a/Html/apps/function_tools/function_manager.py
+++ b/Html/apps/function_tools/function_manager.py
@@ -15,4 +15,5 @@ class FunctionManager:
return self.function_predifine_args[function_name]
def call_function(self, function_name:str, args:dict):
+ print("call_function", function_name, args)
return self.function_caller[function_name]( **args, **self.function_predifine_args[function_name])