From b1449ac668edeb5f7527f41c97b6811b4c2291f3 Mon Sep 17 00:00:00 2001 From: syntron Date: Wed, 11 Dec 2024 21:17:42 +0100 Subject: [PATCH] [ModelicaSystem] log tempdir --- OMPython/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/OMPython/__init__.py b/OMPython/__init__.py index 5e9ec4760..83dcdfed9 100644 --- a/OMPython/__init__.py +++ b/OMPython/__init__.py @@ -936,6 +936,7 @@ def setTempDirectory(self, customBuildDirectory): if not os.path.exists(self.tempdir): raise IOError(self.tempdir, " cannot be created") + logger.info("Define tempdir as {}".format(self.tempdir)) exp = "".join(["cd(", "\"", self.tempdir, "\"", ")"]).replace("\\", "/") self.getconn.sendExpression(exp)