File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -272,7 +272,7 @@ def definition(self) -> ModelExecutionData:
272272 match = re .match (pattern = r"^SET PATH=([^%]*)" , string = line , flags = re .IGNORECASE )
273273 if match :
274274 cmd_library_path = match .group (1 ).strip (';' ) # Remove any trailing semicolons
275- logger .debug (f"ModelExecutionData::definition Set library path for model executable : { repr (cmd_library_path )} " )
275+ logger .debug (f"ModelExecutionData::definition cmd_library_path : { repr (cmd_library_path )} " )
276276 my_env = os .environ .copy ()
277277 my_env ["PATH" ] = cmd_library_path + os .pathsep + my_env ["PATH" ]
278278
Original file line number Diff line number Diff line change @@ -851,7 +851,7 @@ def run(self) -> int:
851851 """
852852
853853 my_env = os .environ .copy ()
854- logger .debug (f"ModelExecutionData::run() - Set library path for model executable : { repr (self .cmd_library_path )} " )
854+ logger .debug (f"ModelExecutionData::run() self.cmd_library_path : { repr (self .cmd_library_path )} " )
855855 if isinstance (self .cmd_library_path , str ):
856856 my_env ["PATH" ] = self .cmd_library_path + os .pathsep + my_env ["PATH" ]
857857
You can’t perform that action at this time.
0 commit comments