Skip to content

Commit

Permalink
Fix error logging issue (#220)
Browse files Browse the repository at this point in the history
  • Loading branch information
roywilly authored Sep 25, 2023
1 parent c2bdae7 commit 6eef208
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fmu/sumo/uploader/scripts/sumo_upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def sumo_upload_main(
"Problem related to Sumo upload: " f"{err}")
_sumo_logger = sumo_connection.api.getLogger("log_2_server_sumo_upload")
_sumo_logger.propagate = False
_sumo_logger.warning("Problem related to Sumo upload for case: ", case_metadata_path, " ", err)
_sumo_logger.warning("Problem related to Sumo upload for case: %s; %s", case_metadata_path, err)
return


Expand Down

0 comments on commit 6eef208

Please sign in to comment.