Sep 15 2022
10:36 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Sep 15 2022
10:36 AM
Meraki api, python calls generate logs on screen
hi guys,
so I use python to do some coding calling meraki python class.
it generates stff on the screen that I don't want to see such as,
2022-09-15 14:25:55 meraki: INFO > Meraki dashboard API session initialized with these parameters: <removed many more lines>
how do I get rid of this? I just want to see my program output not all the stuff the meraki class is dumping on screen.
thanks.
Solved! Go to solution.
1 Accepted Solution
Sep 15 2022
10:49 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Sep 15 2022
10:49 AM
found my answer,
dashboard = meraki.DashboardAPI(API_KEY,output_log=False, print_console=False)
2 Replies 2
Sep 15 2022
10:49 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Sep 15 2022
10:49 AM
found my answer,
dashboard = meraki.DashboardAPI(API_KEY,output_log=False, print_console=False)
Sep 15 2022
10:53 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Sep 15 2022
10:53 AM
You might also want to add...
output_log=False,
suppress_logging=True,
...there are several other things you can set.

Get notified when there are additional replies to this discussion.