Quiet down PC discovery logging

This commit is contained in:
Cameron Gutman
2018-06-01 19:38:52 -07:00
parent 314f32388a
commit cdb5f51ab8
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -168,10 +168,10 @@
DiscoveryWorker* worker = (DiscoveryWorker*)[self createWorkerForHost:host];
[worker discoverHost];
if ([self addHostToDiscovery:host]) {
Log(LOG_I, @"Adding host to discovery: %@", host.name);
Log(LOG_D, @"Adding host to discovery: %@", host.name);
[self->_callback updateAllHosts:self->_hostQueue];
} else {
Log(LOG_I, @"Not adding host to discovery: %@", host.name);
Log(LOG_D, @"Not adding host to discovery: %@", host.name);
}
}
});