09-15-2022 10:36 AM
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.
09-15-2022 10:49 AM
found my answer,
dashboard = meraki.DashboardAPI(API_KEY,output_log=False, print_console=False)
09-15-2022 10:49 AM
found my answer,
dashboard = meraki.DashboardAPI(API_KEY,output_log=False, print_console=False)
09-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.
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