Sep 16 2020
7:34 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Sep 16 2020
7:34 AM
Disable logging in Python API v1
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.
Labels:
- Labels:
-
Dashboard API
1 Accepted Solution
Sep 17 2020
3:35 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Sep 17 2020
3: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
)
2 Replies 2
Sep 16 2020
2:38 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Sep 16 2020
2:38 PM
Use some options like this:
dashboard = meraki.DashboardAPI(
...
output_log=False,
print_console=False
)
Sep 17 2020
3:35 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Sep 17 2020
3: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
)

Get notified when there are additional replies to this discussion.