quiet core-daemon by replacing warn messages with debug

This commit is contained in:
Jeff Ahrenholz 2018-10-09 10:13:12 -07:00
parent 549d6bd84c
commit 18d4908bf8
7 changed files with 9 additions and 9 deletions

View file

@ -18,7 +18,7 @@ except ImportError:
try:
from emanesh.events.commeffectevent import CommEffectEvent
except ImportError:
logger.warn("compatible emane python bindings not installed")
logger.debug("compatible emane python bindings not installed")
def convert_none(x):

View file

@ -42,7 +42,7 @@ except ImportError:
from emanesh.events import LocationEvent
from emanesh.events.eventserviceexception import EventServiceException
except ImportError:
logger.warn("compatible emane python bindings not installed")
logger.debug("compatible emane python bindings not installed")
EMANE_MODELS = [
EmaneRfPipeModel,

View file

@ -9,7 +9,7 @@ except ImportError:
try:
from emanesh import manifest
except ImportError:
logger.warn("compatible emane python bindings not installed")
logger.debug("compatible emane python bindings not installed")
def _type_value(config_type):

View file

@ -16,7 +16,7 @@ except ImportError:
try:
from emanesh.events import LocationEvent
except ImportError:
logger.warn("compatible emane python bindings not installed")
logger.debug("compatible emane python bindings not installed")
class EmaneNet(PyCoreNet):