From b18ab4801dcccccb972ab54217095513fbc304a6 Mon Sep 17 00:00:00 2001 From: syntron <32058823+syntron@users.noreply.github.com> Date: Tue, 17 Dec 2024 09:28:31 +0100 Subject: [PATCH] [ModelicaSystem] log tempdir (#237) --- OMPython/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/OMPython/__init__.py b/OMPython/__init__.py index 5e9ec47..83dcdfe 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)