Skip to content

Commit f7900b0

Browse files
committed
Add verbose logging
1 parent 48a5252 commit f7900b0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

optimizerapi/optimizer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def run(body) -> dict:
2626
dict
2727
a JSON encodable dictionary representation of the result.
2828
"""
29-
# print("Receive: " + str(body))
29+
print("Receive: " + str(body))
3030
data = [(run["xi"], run["yi"]) for run in body["data"]]
3131
cfg = body["optimizerConfig"]
3232
space = [(x["from"], x["to"]) if x["type"] == "numeric" else tuple(x["categories"]) for x in cfg["space"]]

0 commit comments

Comments
 (0)