We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d9d8b1 commit 03b1cb7Copy full SHA for 03b1cb7
1 file changed
openeo_driver/processes.py
@@ -64,7 +64,7 @@ def to_dict_040(self) -> dict:
64
"""Generate process spec as (JSON-able) dictionary (API 0.4.0 style)."""
65
# TODO #47 drop this
66
if len(self._parameters) == 0:
67
- _log.warning("Process with no parameters")
+ _log.debug("Process with no parameters")
68
assert self._returns is not None
69
return {**self.extra, **{
70
"id": self.id,
@@ -80,7 +80,7 @@ def to_dict_040(self) -> dict:
80
def to_dict_100(self) -> dict:
81
"""Generate process spec as (JSON-able) dictionary (API 1.0.0 style)."""
82
83
- _log.warning(f"Process with no parameters: {self.id!r}")
+ _log.debug(f"Process with no parameters: {self.id!r}")
84
85
86
0 commit comments