Skip to content

Commit

Permalink
[SDK] Make starting run log message more clear (#503)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hedingber committed Oct 29, 2020
1 parent 65c9e36 commit ffff899
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mlrun/runtimes/base.py
Expand Up @@ -339,7 +339,7 @@ def run(
if not self.is_child:
dbstr = "self" if self._is_api_server else self.spec.rundb
logger.info(
"starting run {} uid={} -> {}".format(meta.name, meta.uid, dbstr)
"starting run {} uid={} DB={}".format(meta.name, meta.uid, dbstr)
)
meta.labels["kind"] = self.kind
if "owner" not in meta.labels:
Expand Down

0 comments on commit ffff899

Please sign in to comment.