Heads Up :
The post you are writing will appear in a public forum. Please ensure all content is appropriate for public consumption. Review the employee guidelines for the community here.
Hi All - First time user of the DevNet Meraki Sandbox system. I have a reservation with the "Small Business" sandbox active. When I login to the Meraki portal, the devices are all reporting that they are not connected to the Meraki Cloud. See atta...
Introduction:https://github.com/jeremyschulman/genie-quickstartAs a network automation engineer responsible for creating tools for use with Cisco devices I am always on the lookout for software products and technologies. I’ve been following the Cisco...
Hi @Mike Assel, re: connect(log_stdout=False) I learned via a response on Twitter from one of the DevNet genie developers. After I learned this, I did a scan of the sourcecode and I could not find any reference to this Device() argument either. See...
After further research, there are two other methods:1) When you initially connect to a device, you can pass the argument dev.connect(log_stdout=False) to disable logging; this disable will be in-effect for the entire session until you re-enable it.2)...
Given a device instance, you can change the log settings via the connectionmgr instance. For example:import logging# dev is a Device instance from a testbeddev.connectionmgr.log.setLevel(logging.ERROR)# now execute a command and you will not see the...