09-16-2020 07:34 AM
Hi,
Since i'v upgraded API in v1, my python script return messages log for each API call and created log file for each execution.
How can i disable it ?
thks.
Solved! Go to Solution.
09-17-2020 03:35 AM
Thanks for your help.
It works at 90% ^^
there is no more log displayed in the terminal, no logging entry in the log file but it still created empty I have found these settings, it works fine.
dashboard = meraki.DashboardAPI(
...
suppress_logging=True
)
09-16-2020 02:38 PM
Use some options like this:
dashboard = meraki.DashboardAPI(
...
output_log=False,
print_console=False
)
09-17-2020 03:35 AM
Thanks for your help.
It works at 90% ^^
there is no more log displayed in the terminal, no logging entry in the log file but it still created empty I have found these settings, it works fine.
dashboard = meraki.DashboardAPI(
...
suppress_logging=True
)
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide