From f6a6df2f488c464d949fcd350d1d96f47969a93c Mon Sep 17 00:00:00 2001 From: asteroide Date: Mon, 22 May 2017 09:57:01 +0200 Subject: Add logs when a slave is added. Change-Id: Ifa70f9b061091c274e7ff760e449a08d3a3c2ad4 --- moonv4/moon_orchestrator/moon_orchestrator/api/slaves.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'moonv4') diff --git a/moonv4/moon_orchestrator/moon_orchestrator/api/slaves.py b/moonv4/moon_orchestrator/moon_orchestrator/api/slaves.py index 66ddf256..9142a830 100644 --- a/moonv4/moon_orchestrator/moon_orchestrator/api/slaves.py +++ b/moonv4/moon_orchestrator/moon_orchestrator/api/slaves.py @@ -45,7 +45,9 @@ class Slaves(object): ctx.pop("method") ctx.pop("call_master") self.slaves[uuid] = ctx + LOG.info("New slave added: {}".format(ctx['name'])) return {"slaves": {uuid: ctx}} + LOG.warning("No name given for the new slave.") def get_slaves(self, ctx, args=None): """Get all the known slaves -- cgit 1.2.3-korg