Skip to content

Commit

Permalink
fix print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
rajithkrishnegowda committed Nov 12, 2024
1 parent c7d4e2b commit a761a22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openfl/interface/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def cli(context, log_level, no_warnings):
print("os.getenv log file path is {}".format(os.getenv("LOG_FILE")))
if os.getenv("LOG_FILE") is not None:
log_file = pathlib.Path(os.getenv("LOG_FILE")).expanduser().resolve()
print("log file path is {}".format(log_file))
print("log file path is {}".format(log_file))
setup_logging(log_level, str(log_file))
sys.stdout.reconfigure(encoding="utf-8")

Expand Down

0 comments on commit a761a22

Please sign in to comment.