You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One can fully customize logging via python's standard module [`logging`](https://docs.python.org/3/library/logging.html). Everything you need to do is configure it before AutoIntent execution:
50
+
"""
51
+
# %%
52
+
importlogging
53
+
54
+
logging.basicConfig(level="INFO")
55
+
pipeline_optimizer.fit(dataset)
56
+
57
+
# %% [markdown]
58
+
"""
59
+
See external tutorials and guides about `logging` module.
60
+
"""
61
+
62
+
# %% [markdown]
63
+
"""
64
+
## Export from AutoIntent
65
+
66
+
If you don't have to customize logging, you can export our configuration. Everything you need to do is setup it before AutoIntent execution:
The first parameter affects the logs to the standard output stream. The second parameter is optional. If it is specified, then the "DEBUG" messages are logged to the file, regardless of what is specified by the first parameter.
0 commit comments