@@ -72,7 +72,6 @@ def open(path: pathlib.Path, agent_server: bool = False):
72
72
def framework () -> ctypes .CDLL :
73
73
if not Library .is_agent_server ():
74
74
if not Library ._framework :
75
- print (f"Opening framework library: { Library .framework_libpath } " )
76
75
Library ._framework = Library ._lib_type (str (Library .framework_libpath ))
77
76
78
77
return Library ._framework
@@ -82,7 +81,6 @@ def framework() -> ctypes.CDLL:
82
81
@staticmethod
83
82
def toolkit () -> ctypes .CDLL :
84
83
if not Library ._toolkit :
85
- print (f"Opening toolkit library: { Library .toolkit_libpath } " )
86
84
Library ._toolkit = Library ._lib_type (str (Library .toolkit_libpath ))
87
85
88
86
return Library ._toolkit
@@ -93,7 +91,6 @@ def agent_client() -> ctypes.CDLL:
93
91
raise ValueError ("Agent server is not available in the current context." )
94
92
95
93
if not Library ._agent_client :
96
- print (f"Opening agent client library: { Library .agent_client_libpath } " )
97
94
Library ._agent_client = Library ._lib_type (
98
95
str (Library .agent_client_libpath )
99
96
)
@@ -106,7 +103,6 @@ def agent_server() -> ctypes.CDLL:
106
103
raise ValueError ("Agent client is not available in the current context." )
107
104
108
105
if not Library ._agent_server :
109
- print (f"Opening agent server library: { Library .agent_server_libpath } " )
110
106
Library ._agent_server = Library ._lib_type (
111
107
str (Library .agent_server_libpath )
112
108
)
0 commit comments