File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ def model_post_init(self, __context: Any) -> None:
9898 self ._backend = self .backend
9999 self .index = self ._backend .index
100100 logger .info (
101- f"Initialized long term memory with provided backend instance { self ._backend .__class__ .__name__ } "
101+ f"Initialized long term memory with provided backend instance { self ._backend .__class__ .__name__ } , index= { self . index } "
102102 )
103103 return
104104
@@ -124,6 +124,10 @@ def model_post_init(self, __context: Any) -> None:
124124
125125 self ._backend = _get_backend_cls (self .backend )(index = self .index )
126126
127+ logger .info (
128+ f"Initialized long term memory with provided backend instance { self ._backend .__class__ .__name__ } , index={ self .index } "
129+ )
130+
127131 def _filter_and_convert_events (self , events : list [Event ]) -> list [str ]:
128132 final_events = []
129133 for event in events :
You can’t perform that action at this time.
0 commit comments