We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f384b69 commit 4e65247Copy full SHA for 4e65247
e4s_cl/cf/wi4mpi/__init__.py
@@ -169,10 +169,14 @@ def wi4mpi_root() -> Optional[Path]:
169
170
if string is None or not string:
171
LOGGER.debug("Getting Wi4MPI root failed - WI4MPI_ROOT not in environment")
172
- LOGGER.debug(f"Available Wi4MPI env vars: WI4MPI_FROM={os.environ.get('WI4MPI_FROM')}, WI4MPI_TO={os.environ.get('WI4MPI_TO')}")
+ LOGGER.debug(
173
+ "Available Wi4MPI env vars: WI4MPI_FROM=%s, WI4MPI_TO=%s",
174
+ os.environ.get("WI4MPI_FROM"),
175
+ os.environ.get("WI4MPI_TO"),
176
+ )
177
return None
178
- LOGGER.debug(f"Wi4MPI root found: {string}")
179
+ LOGGER.debug("Wi4MPI root found: %s", string)
180
return Path(string)
181
182
0 commit comments