Skip to content

Commit 8a91f06

Browse files
committed
Remove some log messages.
1 parent dabc5e7 commit 8a91f06

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

myDevices/devices/manager.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,12 +145,11 @@ def addDevice(name, device, description, args, origin):
145145

146146
instance = None
147147
try:
148-
logger.info('addDevice: {}'.format(args))
149148
if len(args) > 0:
150149
instance = constructor(**args)
151150
else:
152151
instance = constructor()
153-
logger.info('Adding instance ' + str(instance))
152+
logger.debug('Adding instance ' + str(instance))
154153
addDeviceInstance(name, device, description, instance, args, origin)
155154
return 1
156155
except Exception as e:

0 commit comments

Comments
 (0)