Skip to content

Commit

Permalink
[Logging] Remove spammy storing artifact log line (#3630)
Browse files Browse the repository at this point in the history
  • Loading branch information
liranbg committed May 23, 2023
1 parent e5ea97f commit 1e5a9a6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mlrun/api/api/endpoints/artifacts.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,9 @@ async def store_artifact(
except ValueError:
log_and_raise(HTTPStatus.BAD_REQUEST.value, reason="bad JSON body")

logger.debug("Storing artifact", data=data)
logger.debug(
"Storing artifact", project=project, uid=uid, key=key, tag=tag, iter=iter
)
await run_in_threadpool(
mlrun.api.crud.Artifacts().store_artifact,
db_session,
Expand Down

0 comments on commit 1e5a9a6

Please sign in to comment.