Skip to content

Commit

Permalink
pushing Al comments
Browse files Browse the repository at this point in the history
  • Loading branch information
amandarichardsonn committed Mar 21, 2024
1 parent 7e7adc8 commit 636c81f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions smartsim/_core/entrypoints/colocated.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,9 +204,9 @@ def main(
try:
hostname = socket.gethostname()
filename = (
f"{hostname}.log"
f"colo_orc_{hostname}.log"
if os.getenv("SMARTSIM_LOG_LEVEL") == "debug"
else "/dev/null"
else os.devnull
)
with open(filename, "w", encoding="utf-8") as file:
process = psutil.Popen(cmd, stdout=file.fileno(), stderr=STDOUT)
Expand Down

0 comments on commit 636c81f

Please sign in to comment.